home *** CD-ROM | disk | FTP | other *** search
- @echo off
- break on
- verify on
- IF "%1" == "" goto Usage
-
- md %1
- cls
- echo ┌─────────┐
- echo ┌─────┴───┐ │ (R)
- echo ──│ │o │──────────────────
- echo │ ┌─────┴╨──┐ │ Association of
- echo │ │ │─┘ Shareware
- echo └───│ o │ Professionals
- echo ──────│ ║ │────────────────────
- echo └────╨────┘ MEMBER
- echo
- echo ** Paint Shop Installation **
- echo
- echo Copying Paint Shop files to %1
- copy *.* %1
- echo
- echo Installation completed. Paint Shop has been copied to %1
- echo Add Paint Shop (PS.EXE) to your Windows menuing system.
- goto Exit
-
- :Usage
- CLS
- echo ** Paint Shop Installation **
- echo
- echo
- echo Usage: INSTALL D:\DIR
- echo
- echo Where: D is the drive and DIR is the directory where
- echo Paint Shop is to be installed. (eg: C:\PS)
- echo
- echo
- echo Example: INSTALL C:\PS
- echo
- :Exit
-